Skip to content

Instantly share code, notes, and snippets.

@axelquack
axelquack / generateAndInstallSslCertificatesForUnifiUdmProWithLocalCa.md
Last active January 18, 2026 01:40
Generate and Install SSL Certificates for UniFi UDM Pro with Local CA

Generate and Install SSL Certificates for UniFi UDM Pro with Local CA

Network Setup

  • Gateway: Dream Machine Pro (Unifi) * IP: 10.0.0.1 (fixed) * DNS Entry: gateway.example.net
  • Network Name: example.net * Subnet: 10.0.0.0/24 (configured under Settings > Networks)
  • Client Machine (example): Named "client1"
@tedyblood
tedyblood / Woeid
Created June 29, 2020 04:24
Woeid Used in Twitter for load trend by country. Standar for Yahoo
[
{
"name": "Worldwide",
"placeType": {
"code": 19,
"name": "Supername"
},
"url": "http://where.yahooapis.com/v1/place/1",
"parentid": 0,
"country": "",
@m417z
m417z / taskbar-view-dll-early-loader.wh.cpp
Last active January 18, 2026 01:31
This mod tries to improve compatibility of taskbar mods with StartAllBack due to recent changes in Windows - https://github.com/ramensoftware/windhawk-mods/issues/1698
// ==WindhawkMod==
// @id taskbar-view-dll-early-loader
// @name Taskbar.View.dll early loader
// @description This mod tries to improve compatibility of taskbar mods with StartAllBack due to recent changes in Windows
// @version 0.1
// @author m417z
// @github https://github.com/m417z
// @twitter https://twitter.com/m417z
// @homepage https://m417z.com/
// @include explorer.exe
@reindex-ot
reindex-ot / RemoveAppCloud.md
Last active January 18, 2026 01:29
Aura from Unity & Digital Turbine Blacklists. (Remove AppCloud/AppSelector/MobileServices)

AppCloud/AppSelector/MobileServices (Aura from Unity & Digital Turbine) Blacklists.

ADBを構築済みの環境でコマンドを流すことでAura from UnityとDigital Turbineをシステム上から擬似的に消し去ります。
ADBの環境構築はこちらを使えです。

Aura from Unityについて

元々はイスラエルのIT企業、ironSourceが提供していたサービスです。
現在ironSourceはUnityに買収されており、Aura from Unityになっています。

パッケージ名は com.aura.oobe.XXXX の綴りが基本的に共通しています。

@xorrior
xorrior / wmic_cmds.txt
Last active January 18, 2026 01:27
Useful Wmic queries for host and domain enumeration
Host Enumeration:
--- OS Specifics ---
wmic os LIST Full (* To obtain the OS Name, use the "caption" property)
wmic computersystem LIST full
--- Anti-Virus ---
wmic /namespace:\\root\securitycenter2 path antivirusproduct
Rem run as administrator
@echo on & @setlocal enableextensions
@echo =========================
@echo Turn off the time service
net stop w32time
@echo ======================================================================
@echo Set the SNTP (Simple Network Time Protocol) source for the time server
w32tm /config /syncfromflags:manual /manualpeerlist:"0.it.pool.ntp.org 1.it.pool.ntp.org 2.it.pool.ntp.org 3.it.pool.ntp.org"
@echo =============================================
@echo ... and then turn on the time service back on
@kevinma2010
kevinma2010 / quad-forge.sh
Last active January 18, 2026 01:20
一键启动多 Agent tmux 工作区:OpenCode/Droid/Claude/Codex 负责执行
#!/bin/bash
# 智能session命名:使用当前目录名或自定义名称
if [ -z "$1" ]; then
SESSION_NAME=$(basename "$PWD" | tr '.' '-' | tr ' ' '-')
else
SESSION_NAME=$1
fi
# 检查session是否已存在
tmux has-session -t "$SESSION_NAME" 2>/dev/null
@arashkaffamanesh
arashkaffamanesh / vmware.md
Created January 3, 2025 11:22 — forked from ayebrian/vmware.md
VMware ESXi 8 / vCenter 8 / Workstation 17 license key 2024
@Kev1nZha0
Kev1nZha0 / ms-surface-downgrade-fw.md
Created January 18, 2026 01:15 — forked from n3ddu8/ms-surface-downgrade-fw.md
Downgrade firmware on Microsoft Surface Devices
@AcrylonitrileButadieneStyrene
AcrylonitrileButadieneStyrene / yno_sss_restore.user.js
Last active January 18, 2026 01:15
YNO Restore Share Screenshot
// ==UserScript==
// @name YNO Restore Share Screenshot
// @match *://ynoproject.net/*
// @version 0.1.2
// @grant unsafeWindow
// @run-at document-start
// ==/UserScript==
let count = 0;
const interval = setInterval(() => {